home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / language / ici / ici.cpi / float.h < prev    next >
C/C++ Source or Header  |  1994-10-27  |  237b  |  16 lines

  1. #ifndef    ICI_FLOAT_H
  2. #define    ICI_FLOAT_H
  3.  
  4. #ifndef    ICI_OBJECT_H
  5. #include "object.h"
  6. #endif
  7.  
  8. struct floats
  9. {
  10.     object_t    o_head;
  11.     double    f_value;
  12. };
  13. #define    floatof(o)    ((float_t *)o)
  14. #define    isfloat(o)    ((o)->o_tcode == TC_FLOAT)
  15. #endif
  16.